body{
    background-color: rgba(0,0,0,0.6);
}
.grid-overlay {
  position: relative;
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 1/1;
  margin: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}
.grid-background::before{
    content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.4); /* modifica qui l'opacità */
  z-index: 1;
  pointer-events: none;
}
.grid-background {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  width: 100%;
  height: 100%;
  gap: 5px;
}

.grid-background div {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
}

.centered-text {
  position: absolute;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 40px;
  text-align: center;
  max-width: 80%;
  font-family: 'Poppins', sans-serif;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.centered-text h2 {
  font-size: 28px;
  font-family: "Roboto Condensed", Sans-serif;
  font-style: italic;
  margin-top: 15px;
  margin-bottom: 15px;
}

.centered-text p {
  font-size: 16px;
  line-height: 1.6;
}
.centered-text ul,
.centered-text ul li {
  text-align: left;
  margin-left: 0;
  padding-left: 1em; /* oppure come preferisci */
  list-style-position: outside;
}